home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / deleti1r / frame.frm < prev    next >
Text File  |  1999-07-15  |  928b  |  49 lines

  1. VERSION 5.00
  2. Begin VB.MDIForm frmFrame 
  3.    BackColor       =   &H8000000C&
  4.    ClientHeight    =   3675
  5.    ClientLeft      =   165
  6.    ClientTop       =   735
  7.    ClientWidth     =   5295
  8.    LinkTopic       =   "MDIForm1"
  9.    StartUpPosition =   3  'Windows Default
  10.    Begin VB.Menu mnuFile 
  11.       Caption         =   "File"
  12.       Begin VB.Menu mnuAudio 
  13.          Caption         =   "Audio player"
  14.       End
  15.       Begin VB.Menu mnnExit 
  16.          Caption         =   "Exit"
  17.       End
  18.    End
  19. End
  20. Attribute VB_Name = "frmFrame"
  21. Attribute VB_GlobalNameSpace = False
  22. Attribute VB_Creatable = False
  23. Attribute VB_PredeclaredId = True
  24. Attribute VB_Exposed = False
  25. ' Frame.frm
  26.  
  27. Option Explicit
  28.  
  29.  
  30.  
  31. Private Sub MDIForm_Load()
  32.     Me.WindowState = 2
  33.     frmAudioPlayer.Show
  34. End Sub
  35.  
  36.  
  37.  
  38. Private Sub mnuAudio_Click()
  39.     frmAudioPlayer.Show
  40. End Sub
  41.  
  42.  
  43.  
  44. Private Sub mnnExit_Click()
  45.     End
  46. End Sub
  47.  
  48.  
  49.